home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 2000 June: Reference Library / Dev.CD Jun 00 RL Disk 1.toast / pc / technical documentation / develop / develop issue 27 / develop issue 27 code / internet config assistant / internetassistant / internetassistantapplication.h < prev    next >
Encoding:
C/C++ Source or Header  |  1996-06-08  |  463 b   |  26 lines

  1. /*
  2.   File:            InternetAssistantApplication.h
  3.  
  4.   Contains:        InternetAssistant: an assistant to set-up basic Internet configuration
  5.  
  6.   Written by:     Arno Gourdol
  7.  
  8.   Copyright:    Copyright 1996 by Apple Computer, Inc., all rights reserved.
  9.  
  10. */
  11.  
  12. #include "TApplication.h"
  13.  
  14. #include "TInternetAssistantInterview.h"
  15.  
  16.  
  17.  
  18.  
  19. class TInternetAssistant : public TApplication
  20. {
  21. public:
  22.     TInternetAssistant(void) : TApplication('ICEx') { };
  23.  
  24.     virtual Boolean QuitRequested(void);
  25. };
  26.